home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 60.zip / BS1 part 60 / Digital Sound Studio d1.adf / ARexx / left.rexx < prev    next >
OS/2 REXX Batch file  |  1993-08-04  |  952b  |  24 lines

  1. /* DSS8+ Left Line Level Adjustment Script */
  2. /* by Bill Prescott  8/4/93                   */
  3.  
  4. Options Results            /* Allows you to get result codes from the          */
  5.                         /* commands issued below.                          */
  6.  
  7. address "REXX_DSS8"        /* This defines where the rest of the script       */
  8.                         /* be talking to.                                  */
  9.  
  10. leftgain 8                /* the number following "leftgain" sets the gain */
  11.                         /* of the left channel, and can be any integer      */
  12.                         /* from 1 to 256 */
  13.  
  14. leftgain                /* This line will get the current setting of the */
  15.                         /* left gain and place it in the variable         */
  16.                         /* "result".                                     */
  17.  
  18. lg=result                /* Now we are making the variable "lg" equal to  */
  19.                         /* output of the above result so that the next   */
  20.                         /* result won't overwrite the one that we need.  */
  21.  
  22. say lg                    /* This just prints the variable "lg" to the     */
  23.                         /* screen so that you know that the filter has      */
  24.                         /* been set to the requested setting.             */